From caeacad44b1756a4247b0b6cec53e0ba7fcf236b Mon Sep 17 00:00:00 2001 From: "maw48@labyrinth.cl.cam.ac.uk" Date: Fri, 4 Jun 2004 14:07:21 +0000 Subject: [PATCH] bitkeeper revision 1.935 (40c082191KRYrcGxH9cNhHpNJYp7Eg) Temporarily disable backend permission checking - it was stopping dom0 acting as a backend :-( --- tools/xend/lib/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/xend/lib/main.py b/tools/xend/lib/main.py index 65ba7f2d38..90776c11d8 100755 --- a/tools/xend/lib/main.py +++ b/tools/xend/lib/main.py @@ -199,7 +199,7 @@ def daemon_loop(): xend.blkif.backend_rx_req(port, msg) elif type == CMSG_NETIF_FE and net_if: net_if.ctrlif_rx_req(port, msg) - elif type == CMSG_NETIF_BE and port == xend.netif.be_port: + elif type == CMSG_NETIF_BE: xend.netif.backend_rx_req(port, msg) else: port.write_response(msg) @@ -211,7 +211,7 @@ def daemon_loop(): type = (msg.get_header())['type'] if type == CMSG_BLKIF_BE and port == dom0_port: xend.blkif.backend_rx_rsp(port, msg) - elif type == CMSG_NETIF_BE and port == xend.netif.be_port: + elif type == CMSG_NETIF_BE: xend.netif.backend_rx_rsp(port, msg) # Send console data. -- 2.30.2